home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Demos / ByCompany / TipTop_Software / TipTop / Supplement / src / Ascii / TransferProgressProtocol.h < prev   
Text File  |  1994-05-08  |  369b  |  14 lines

  1. #import <objc/objc.h>
  2.  
  3. extern id getProgressListener();
  4.  
  5. @protocol TransferProgressProtocol
  6. - transferBegin:(const char *)transferName;
  7. - transferEnd;
  8. - transferFile:(const char *)filename size:(int)size;
  9. - transferFileBegin:(const char *)filename;
  10. - transferProgress:(int)cnt;
  11. - transferMessage:(const char *)txt time:(int)t;
  12. - transferMessage:(const char *)txt;
  13. @end
  14.